home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Unsupported Libraries / Error_MesgLib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  851 b   |  40 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2.  **                                                                             **
  3.  **     Module:        Error_MesgLib.h                                             **                                            
  4.  **                                                                             **
  5.  **                                                                             **
  6.  **     Purpose:                                                               **
  7.  **                                                                             **
  8.  **                                                                             **
  9.  **     Copyright (C) 1992-1995 Apple Computer, Inc.  All rights reserved.     **
  10.  **                                                                             **
  11.  **                                                                             **
  12.  *****************************************************************************/
  13. #ifndef Error_MesgLib_h
  14. #define Error_MesgLib_h
  15.  
  16. #if PRAGMA_ONCE
  17.     #pragma once
  18. #endif
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif    /* __cplusplus */
  23.  
  24.  
  25. char *getErrorString(
  26.     long errorID);
  27.     
  28. char *getWarningString(
  29.     long errorID);
  30.  
  31. char *getNoticeString(
  32.     long errorID);
  33.  
  34.  
  35. #ifdef __cplusplus
  36. }
  37. #endif    /* __cplusplus */
  38.  
  39. #endif /* Error_MesgLib_h */
  40.